.TextLinked > button, .TextLinked > p > button{
    background: var(--White);
    color: var(--Persian-Red);
    font-size: 1em; font-weight: bold;
    border: none;  }
    .TextLinked > button > a > span,  .TextLinked > p > button > a > span{
        width: max-content;
        position: absolute;
        transform: translateX(-100%);
        background: var(--White);
        color: var(--Persian-Red);
        font-size: 1em; font-weight: bold;
        border: none;
        transition: all 0.05s ease-in-out;  }
    .TextLinked > button > a > span:hover,  .TextLinked > p > button > a > span:hover{
        transform: translateX(-95%) scale(1.5) rotate(-4deg);
        background: rgb(214, 214, 214);
        border-radius: 15px 15px 13px 13px;
        padding: 3px 5px; }